home *** CD-ROM | disk | FTP | other *** search
/ Next Step: Mars? / Next Step Mars (1994)(IVI).iso / pssword.fls / 00022_Script_22 < prev    next >
Text File  |  1994-11-23  |  2KB  |  58 lines

  1. on CheckField
  2.   -- in order to continue playing certain global must be set
  3.   -- to show past activity
  4.   -- the order of activity is
  5.   -- dreams - modle3a
  6.   -- adventure - modl3b
  7.   -- enterprise - modle 3d
  8.   -- challenge - modle3c
  9.   
  10.   global drmflg, advflg, chlflg, entflg
  11.   
  12.   if FIELD "PASSWORD" contains "ORBIT" then
  13.     go to frame "startX" of movie "modle3A"
  14.   ELSE
  15.     if FIELD "PASSWORD" contains "LIFTOFF" then
  16.       go to frame "ambience" of movie "modle3A"
  17.     ELSE
  18.       if FIELD "PASSWORD" contains "ROCKET" then
  19.         put 1 into drmflg
  20.         go to frame "startX" of movie "modle3B"
  21.       ELSE
  22.         if FIELD "PASSWORD" contains "PROBE" then
  23.           put 1 into drmflg
  24.           go to frame "ambience" of movie "modle3B"
  25.         ELSE
  26.           if FIELD "PASSWORD" contains "SPACE" then
  27.             put 1 into drmflg
  28.             put 1 into advflg
  29.             put 1 into entflg
  30.             go to frame "startX" of movie "modle3C"
  31.           ELSE
  32.             if FIELD "PASSWORD" contains "PLANET" then
  33.               put 1 into drmflg
  34.               put 1 into advflg
  35.               put 1 into entflg
  36.               go to frame "ambience" of movie "modle3C"
  37.             ELSE
  38.               if FIELD "PASSWORD" contains "MARTIAN" then
  39.                 put 1 into drmflg
  40.                 put 1 into advflg
  41.                 go to frame "startX" of movie "modle3D"
  42.               ELSE
  43.                 if FIELD "PASSWORD" contains "SHUTTLE" then
  44.                   put 1 into drmflg
  45.                   put 1 into advflg
  46.                   go to frame "ambience" of movie "modle3D"
  47.                 ELSE
  48.                   GO TO FRAME "NEWGAME"
  49.                 end if
  50.               end if
  51.             END IF
  52.           END IF
  53.         END IF
  54.       END IF
  55.     END IF
  56.   END IF
  57.   
  58. end checkField